Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633452 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/144 - New Year Countdown

spinner.gif cody/swapnilsparsh/30DaysOfJavaScript/144 - New Year Countdown/spinner.gif
123 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/144 - New Year Countdown/style.css
100 Views
0 Comments
@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");

* {
box-sizing: border-box;
}

body {
background-image: url("https://images.unsplash.com/photo-1467810563316-b5476525c0f9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1349&q=80");
index.html cody/swapnilsparsh/30DaysOfJavaScript/144 - New Year Countdown/index.html
271 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Year countdown</title>
<link rel="stylesheet" href="style.css">
script.js cody/swapnilsparsh/30DaysOfJavaScript/144 - New Year Countdown/script.js
170 Views
0 Comments
const days = document.getElementById("days");
const hours = document.getElementById("hours");
const minutes = document.getElementById("minutes");
const seconds = document.getElementById("seconds");
const countdown = document.getElementById("countdown");
const loading = document.getElementById("loading");
const year = document.getElementById("year");